Skip to content

Instantly share code, notes, and snippets.

Maintainers:
7c6f434c: libreoffice-fresh, libreoffice, libreoffice-qt6-fresh-unwrapped, libreoffice, libreoffice-qt-still-unwrapped, libreoffice-fresh-unwrapped, libreoffice-still-unwrapped, libreoffice-qt-fresh-unwrapped, libreoffice-qt6-fresh, libreoffice-still, libreoffice-still-unwrapped, libreoffice-qt, libreoffice-qt6-still-unwrapped, libreoffice-qt-still, libreoffice-qt6-fresh, libreoffice-qt6-fresh-unwrapped, libreoffice-qt-still, libreoffice-unwrapped, libreoffice-qt-fresh-unwrapped, libreoffice-qt6-still, libreoffice-qt-still-unwrapped, libreoffice-still, libreoffice-qt6-still, libreoffice-qt-unwrapped, libreoffice-qt-unwrapped, libreoffice-qt-fresh, libreoffice-qt6-still-unwrapped, libreoffice-qt-fresh, libreoffice-unwrapped, libreoffice-qt, libreoffice-fresh, libreoffice-fresh-unwrapped
tricktron: libreoffice-bin, libreoffice-bin
aarch64-linux libixion
aarch64-linux libetonyek
x86_64-linux libreoffice-fresh
aarch64-linux libreoffice
x86_64-linux libepubgen
aarch64-linux libreoffice-qt6-fresh-unwrapped
x86_64-linux libreoffice
aarch64-linux unoconv
aarch64-linux libreoffice-qt-still-unwrapped
aarch64-darwin python311Packages.paperwork-shell
@choco-bot
choco-bot / FilesSnapshot.xml
Created May 20, 2024 12:02
ssh-manager v1.5.1 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\ssh-manager\ssh-manager.nupkg" checksum="2D302C139AB578903C2B5B9335AE4094" />
<file path="C:\ProgramData\chocolatey\lib\ssh-manager\ssh-manager.nuspec" checksum="650544D9F94D2B314EFE4D436FDF6B0D" />
<file path="C:\ProgramData\chocolatey\lib\ssh-manager\bin\ssh-manager" checksum="007C735F442D16AF31069D94031A9DF2" />
<file path="C:\ProgramData\chocolatey\lib\ssh-manager\legal\LICENSE.txt" checksum="600EAE832E9B2DEC98A28240640E6D90" />
<file path="C:\ProgramData\chocolatey\lib\ssh-manager\legal\VERIFICATION.txt" checksum="3BD9792F90D5DF05E9238CB6BA902D98" />
</files>
</fileSnapshot>
Maintainers:
dit7ya: apx, apx, apx, apx
chewblacka: apx, apx, apx, apx
aarch64-darwin apx
x86_64-darwin apx
aarch64-linux apx
x86_64-linux apx-gui
aarch64-linux apx-gui
x86_64-linux apx
@mypy-play
mypy-play / main.py
Created May 20, 2024 12:02
Shared via mypy Playground
from typing import Protocol, ParamSpec, Generic, TypeVar
from collections.abc import Callable
T = TypeVar("T", covariant = True)
P = ParamSpec("P")
def my_decorator(f: Callable[P, T]) -> Callable[P, T]:
def my_decorated_function(*args: P.args, **kwargs: P.kwargs) -> T:
Maintainers:
bchmnn: isisdl, isisdl, isisdl-ffmpeg, isisdl-ffmpeg
x86_64-linux isisdl
aarch64-linux isisdl
aarch64-linux isisdl-ffmpeg
x86_64-linux isisdl-ffmpeg
@choco-bot
choco-bot / FilesSnapshot.xml
Created May 20, 2024 12:01
hugin v2023.0.0.20240101 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\hugin\hugin.nupkg" checksum="8519026E3D0160B40951720EEE1BFB5C" />
<file path="C:\ProgramData\chocolatey\lib\hugin\hugin.nuspec" checksum="E4C8A07FB91348366D010C44A2041FA0" />
</files>
</fileSnapshot>
@Lizhen0797
Lizhen0797 / bit-smartcontract-bug...overflow...TimeLock.sol
Created May 20, 2024 12:00
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.26+commit.4563c3fc.js&optimize=false&runs=200&gist=
pragma solidity ^0.4.26;
contract TimeLock {
mapping(address => uint) public balances;
mapping(address => uint) public lockTime;
uint attackTime;
function deposit() public payable{
balances[msg.sender] += msg.value;
lockTime[msg.sender] = now + 1 weeks;